栈和队列
# 栈和队列
[TOC]
# 1.用两个栈实现队列
# 1.1题目描述
用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
# 1.2解法
var stack1=[],stack2=[];
function push(node)
{
stack1.push(node);
}
function pop()
{
if(!stack1.length&&!stack2.length) return undefined;
else if(!stack2.length){
while(stack1.length){
stack2.push(stack1.pop());
}
}
return stack2.pop();
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16